[C#] NodeMouseClick event doesn't work correctly ???
Posted
by Wayne
on Stack Overflow
See other posts from Stack Overflow
or by Wayne
Published on 2010-04-25T17:05:36Z
Indexed on
2010/04/25
17:13 UTC
Read the original article
Hit count: 138
i use a treeview to display files and folders like Windows Explorer. it has a NodeMouseClick event but sometimes when i click +, this event doesn't fire.
private void treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
MessageBox.Show("node mouse click");
}
can anyone explain for me why ? and how to know whenever i click + ?
thanks in advance!
© Stack Overflow or respective owner